{
"cells": [
{
"cell_type": "markdown",
"id": "cca688da-ecff-4c16-95c3-df7c3585f06f",
"metadata": {},
"source": [
"# alphatims"
]
},
{
"cell_type": "raw",
"id": "3d02fe77-26a8-45dc-9056-078449b074a7",
"metadata": {
"editable": true,
"raw_mimetype": "text/html",
"slideshow": {
"slide_type": ""
},
"tags": []
},
"source": [
"\n",
" \n",
"\n",
"
"
]
},
{
"cell_type": "markdown",
"id": "36e0c3b8-9a13-4aa9-8284-b9b181a46da8",
"metadata": {},
"source": [
"## Install alphatims"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "ff13c59a-c8fa-4342-83bd-b83380e5a0d1",
"metadata": {},
"outputs": [],
"source": [
"!pip install alphatims --quiet"
]
},
{
"cell_type": "markdown",
"id": "5c907cc2-c11c-499a-8659-a36b02c3ac1e",
"metadata": {},
"source": [
"## Download test data"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "1816af2a-32f1-4967-9f71-351dd72bcb8a",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"File 20201207_tims03_Evo03_PS_SA_HeLa_200ng_EvoSep_prot_DDA_21min_8cm_S1-C10_1_22476.d.zip downloaded successfully!\n",
"File extracted to ./!\n",
"Zip file 20201207_tims03_Evo03_PS_SA_HeLa_200ng_EvoSep_prot_DDA_21min_8cm_S1-C10_1_22476.d.zip removed.\n"
]
}
],
"source": [
"import requests\n",
"import zipfile\n",
"import os\n",
"\n",
"# # Define the URL and file name\n",
"url = 'https://github.com/MannLabs/alphatims/releases/download/0.1.210317/20201207_tims03_Evo03_PS_SA_HeLa_200ng_EvoSep_prot_DDA_21min_8cm_S1-C10_1_22476.d.zip'\n",
"file_name = '20201207_tims03_Evo03_PS_SA_HeLa_200ng_EvoSep_prot_DDA_21min_8cm_S1-C10_1_22476.d.zip'\n",
"extract_dir = './' # Directory to extract the contents\n",
"\n",
"# # Download the file\n",
"response = requests.get(url)\n",
"with open(file_name, 'wb') as file:\n",
" file.write(response.content)\n",
"\n",
"print(f'File {file_name} downloaded successfully!')\n",
"\n",
"# Unzip the file\n",
"with zipfile.ZipFile(file_name, 'r') as zip_ref:\n",
" zip_ref.extractall(extract_dir)\n",
"\n",
"print(f'File extracted to {extract_dir}!')\n",
"\n",
"# Optionally, remove the zip file after extraction\n",
"os.remove(file_name)\n",
"print(f'Zip file {file_name} removed.')"
]
},
{
"cell_type": "markdown",
"id": "5d600e03-aa37-49ed-9b77-2372f0d8b177",
"metadata": {},
"source": [
"## Load `.d` File and Extra a section of it as a `pd.DataFrame`"
]
},
{
"cell_type": "code",
"execution_count": 9,
"id": "b292914a-87aa-452b-b2c9-c982da0ce8c6",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/joshua/mambaforge/envs/pyopenms-viz/lib/python3.12/site-packages/alphatims/bruker.py:237: FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!\n",
"You are setting values through chained assignment. Currently this works in certain cases, but when using Copy-on-Write (which will become the default behaviour in pandas 3.0) this will never work to update the original DataFrame or Series, because the intermediate object on which we are setting values will behave as a copy.\n",
"A typical example is when you are setting values in a column of a DataFrame, like:\n",
"\n",
"df[\"col\"][row_indexer] = value\n",
"\n",
"Use `df.loc[row_indexer, \"col\"] = values` instead, to perform the assignment in a single step and ensure this keeps updating the original `df`.\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
"\n",
" frames.Id[0] = 0\n",
"/home/joshua/mambaforge/envs/pyopenms-viz/lib/python3.12/site-packages/alphatims/bruker.py:238: FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!\n",
"You are setting values through chained assignment. Currently this works in certain cases, but when using Copy-on-Write (which will become the default behaviour in pandas 3.0) this will never work to update the original DataFrame or Series, because the intermediate object on which we are setting values will behave as a copy.\n",
"A typical example is when you are setting values in a column of a DataFrame, like:\n",
"\n",
"df[\"col\"][row_indexer] = value\n",
"\n",
"Use `df.loc[row_indexer, \"col\"] = values` instead, to perform the assignment in a single step and ensure this keeps updating the original `df`.\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
"\n",
" frames.Time[0] = 0\n",
"/home/joshua/mambaforge/envs/pyopenms-viz/lib/python3.12/site-packages/alphatims/bruker.py:239: FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!\n",
"You are setting values through chained assignment. Currently this works in certain cases, but when using Copy-on-Write (which will become the default behaviour in pandas 3.0) this will never work to update the original DataFrame or Series, because the intermediate object on which we are setting values will behave as a copy.\n",
"A typical example is when you are setting values in a column of a DataFrame, like:\n",
"\n",
"df[\"col\"][row_indexer] = value\n",
"\n",
"Use `df.loc[row_indexer, \"col\"] = values` instead, to perform the assignment in a single step and ensure this keeps updating the original `df`.\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
"\n",
" frames.MaxIntensity[0] = 0\n",
"/home/joshua/mambaforge/envs/pyopenms-viz/lib/python3.12/site-packages/alphatims/bruker.py:240: FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!\n",
"You are setting values through chained assignment. Currently this works in certain cases, but when using Copy-on-Write (which will become the default behaviour in pandas 3.0) this will never work to update the original DataFrame or Series, because the intermediate object on which we are setting values will behave as a copy.\n",
"A typical example is when you are setting values in a column of a DataFrame, like:\n",
"\n",
"df[\"col\"][row_indexer] = value\n",
"\n",
"Use `df.loc[row_indexer, \"col\"] = values` instead, to perform the assignment in a single step and ensure this keeps updating the original `df`.\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
"\n",
" frames.SummedIntensities[0] = 0\n",
"/home/joshua/mambaforge/envs/pyopenms-viz/lib/python3.12/site-packages/alphatims/bruker.py:241: FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!\n",
"You are setting values through chained assignment. Currently this works in certain cases, but when using Copy-on-Write (which will become the default behaviour in pandas 3.0) this will never work to update the original DataFrame or Series, because the intermediate object on which we are setting values will behave as a copy.\n",
"A typical example is when you are setting values in a column of a DataFrame, like:\n",
"\n",
"df[\"col\"][row_indexer] = value\n",
"\n",
"Use `df.loc[row_indexer, \"col\"] = values` instead, to perform the assignment in a single step and ensure this keeps updating the original `df`.\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
"\n",
" frames.NumPeaks[0] = 0\n",
"/home/joshua/mambaforge/envs/pyopenms-viz/lib/python3.12/site-packages/alphatims/bruker.py:242: FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!\n",
"You are setting values through chained assignment. Currently this works in certain cases, but when using Copy-on-Write (which will become the default behaviour in pandas 3.0) this will never work to update the original DataFrame or Series, because the intermediate object on which we are setting values will behave as a copy.\n",
"A typical example is when you are setting values in a column of a DataFrame, like:\n",
"\n",
"df[\"col\"][row_indexer] = value\n",
"\n",
"Use `df.loc[row_indexer, \"col\"] = values` instead, to perform the assignment in a single step and ensure this keeps updating the original `df`.\n",
"\n",
"See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n",
"\n",
" frames.MsMsType[0] = 0\n",
"100%|███████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████| 11886/11886 [00:01<00:00, 9692.55it/s]\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"Time taken to run the code: 2.02 seconds\n"
]
},
{
"data": {
"text/html": [
"
\n", " | raw_indices | \n", "frame_indices | \n", "scan_indices | \n", "precursor_indices | \n", "push_indices | \n", "tof_indices | \n", "rt_values | \n", "rt_values_min | \n", "mobility_values | \n", "quad_low_mz_values | \n", "quad_high_mz_values | \n", "mz_values | \n", "intensity_values | \n", "corrected_intensity_values | \n", "
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | \n", "0 | \n", "1 | \n", "52 | \n", "0 | \n", "980 | \n", "255431 | \n", "0.564402 | \n", "0.009407 | \n", "1.580692 | \n", "-1.0 | \n", "-1.0 | \n", "913.250345 | \n", "10 | \n", "10 | \n", "
1 | \n", "1 | \n", "1 | \n", "63 | \n", "0 | \n", "991 | \n", "308595 | \n", "0.564402 | \n", "0.009407 | \n", "1.568660 | \n", "-1.0 | \n", "-1.0 | \n", "1185.318098 | \n", "86 | \n", "86 | \n", "
2 | \n", "2 | \n", "1 | \n", "69 | \n", "0 | \n", "997 | \n", "160184 | \n", "0.564402 | \n", "0.009407 | \n", "1.562095 | \n", "-1.0 | \n", "-1.0 | \n", "514.400704 | \n", "159 | \n", "159 | \n", "
3 | \n", "3 | \n", "1 | \n", "77 | \n", "0 | \n", "1005 | \n", "375561 | \n", "0.564402 | \n", "0.009407 | \n", "1.553337 | \n", "-1.0 | \n", "-1.0 | \n", "1578.430403 | \n", "53 | \n", "53 | \n", "
4 | \n", "4 | \n", "1 | \n", "78 | \n", "0 | \n", "1006 | \n", "248580 | \n", "0.564402 | \n", "0.009407 | \n", "1.552242 | \n", "-1.0 | \n", "-1.0 | \n", "880.766749 | \n", "47 | \n", "47 | \n", "
... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "... | \n", "
17036 | \n", "17036 | \n", "1 | \n", "919 | \n", "0 | \n", "1847 | \n", "74875 | \n", "0.564402 | \n", "0.009407 | \n", "0.609185 | \n", "-1.0 | \n", "-1.0 | \n", "253.681834 | \n", "81 | \n", "81 | \n", "
17037 | \n", "17037 | \n", "1 | \n", "919 | \n", "0 | \n", "1847 | \n", "112482 | \n", "0.564402 | \n", "0.009407 | \n", "0.609185 | \n", "-1.0 | \n", "-1.0 | \n", "357.374903 | \n", "253 | \n", "253 | \n", "
17038 | \n", "17038 | \n", "1 | \n", "919 | \n", "0 | \n", "1847 | \n", "143231 | \n", "0.564402 | \n", "0.009407 | \n", "0.609185 | \n", "-1.0 | \n", "-1.0 | \n", "455.328372 | \n", "130 | \n", "130 | \n", "
17039 | \n", "17039 | \n", "1 | \n", "923 | \n", "0 | \n", "1851 | \n", "160022 | \n", "0.564402 | \n", "0.009407 | \n", "0.604592 | \n", "-1.0 | \n", "-1.0 | \n", "513.819175 | \n", "154 | \n", "154 | \n", "
17040 | \n", "17040 | \n", "1 | \n", "923 | \n", "0 | \n", "1851 | \n", "167506 | \n", "0.564402 | \n", "0.009407 | \n", "0.604592 | \n", "-1.0 | \n", "-1.0 | \n", "541.027761 | \n", "174 | \n", "174 | \n", "
17041 rows × 14 columns
\n", "